describe in brief.
When to use MVC?
703
07-Jan-2020
Updated on 07-Jan-2020
Nishi Tiwari
07-Jan-2020Whenever we want to develop application which is to be lightweight and used for easy for testing and Maintenance and more Loose Coupling at that time we can develop application in MVC.
If we see in asp.net Webforms we have various server control which generates large view state to maintain state which make our page heavy. If person is having low bandwidth then they cannot access this Heavy page. At that time we can use MVC where we have control over Generating HTML and using some Functionality of MVC such as bundling and modification can increase performance of application.